home *** CD-ROM | disk | FTP | other *** search
/ CD Actual Thematic 7: Programming / CDAT7.iso / demos / VisualAge for Java 2.0 Entry / setup / data1.cab / ide-e / IDE / cache / 10C6J2D (.txt) < prev    next >
Encoding:
Java Class File  |  1998-09-16  |  419 b   |  22 lines

  1. package com.sun.java.swing.plaf.basic;
  2.  
  3. import java.awt.event.KeyListener;
  4. import java.awt.event.MouseListener;
  5. import java.awt.event.MouseMotionListener;
  6.  
  7. public interface ComboPopup {
  8.    KeyListener getKeyListener();
  9.  
  10.    MouseListener getMouseListener();
  11.  
  12.    MouseMotionListener getMouseMotionListener();
  13.  
  14.    void hide();
  15.  
  16.    boolean isVisible();
  17.  
  18.    void show();
  19.  
  20.    void uninstallingUI();
  21. }
  22.